home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / script-fu-util.scm < prev    next >
Text File  |  2009-12-15  |  2KB  |  48 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. ; Resizes the image so as to include the selected layer.
  19. ; The resulting image has the selected layer size.
  20. ; Copyright (C) 2002 Chauk-Mean PROUM
  21. ;
  22. (define (script-fu-util-image-resize-from-layer image layer)
  23.   (let* (
  24.         (width (car (gimp-drawable-width layer)))
  25.         (height (car (gimp-drawable-height layer)))
  26.         (posx (- (car (gimp-drawable-offsets layer))))
  27.         (posy (- (cadr (gimp-drawable-offsets layer))))
  28.         )
  29.  
  30.     (gimp-image-resize image width height posx posy)
  31.   )
  32. )
  33.  
  34. ; Add the specified layers to the image.
  35. ; The layers will be added in the given order below the
  36. ; active layer.
  37. ;
  38. (define (script-fu-util-image-add-layers image . layers)
  39.   (while (not (null? layers))
  40.     (let ((layer (car layers)))
  41.       (set! layers (cdr layers))
  42.       (gimp-image-add-layer image layer -1)
  43.       (gimp-image-lower-layer image layer)
  44.     )
  45.   )
  46. )
  47.  
  48.